index.html
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>第十六天 - 基本Web頁面</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 20px;
}
header {
background-color: #4CAF50;
color: white;
padding: 10px 0;
text-align: center;
}
h1 {
margin: 0;
}
section {
margin: 20px 0;
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
img {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
}
</style>
</head>
<body>
<header>
<h1>歡迎來到我的網站</h1>
</header>
<section>
<h2>關於這個頁面</h2>
<p>這是一個簡單的HTML和CSS範例頁面,旨在展示如何使用基本的網頁技術來構建Web頁面。</p>
<p>你可以在這裡展示任何你想要分享的內容,例如你的作品集、個人介紹,或是學習過程中的筆記。</p>
</section>
<section>
<h2>圖片展示</h2>
<img src="static/images/sample-image.jpg" alt="範例圖片">
</section>
<section>
<h2>更多內容</h2>
<p>隨著你學習HTML和CSS,你可以不斷地擴展和改進這個頁面,添加更多的內容和功能。</p>
</section>
</body>
</html>
app.py
from flask import Flask, render_template
app = Flask(__name__)
# 定義首頁路由,渲染 index.html
@app.route('/')
def index():
return render_template('index.html')
# 如果這個腳本是直接運行的,那麼啟動 Flask 應用
if __name__ == '__main__':
app.run(debug=True)